home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Teach Yourself Web Publi…sional Reference Edition)
/
Teach Yourself Web Publishing HTML 3.2.iso
/
mac
/
iso9660
/
SOURCE
/
CHAP19
/
CGI-BIN
/
PLAURA.TXT
< prev
next >
Wrap
Text File
|
1996-05-28
|
424b
|
22 lines
#!/bin/sh
#
# Checks to see if Laura is logged in. If so, prints a summary.
# otherwise, reports when Laura was last logged in.
echo "Content-type: text/html"
echo
echo "<HTML><HEAD>"
echo "<TITLE>Is Laura There?</TITLE>"
echo "</HEAD><BODY>"
ison=`who | grep lemay`
if [ ! -z "$ison" ]; then
echo "<P>Laura is logged in</P>"
else
echo "<P>Laura isn't logged in</P>"
fi
echo "</BODY></HTML>"